參考 :
https://www.unix.com/unix-for-advanced-and-expert-users/163550-how-read-file-inside-jar.html
查看 jar 裡面檔案內容
unzip -p **jar 檔** **要查看的檔案**
範例 : unzip -p utilitytools.jar META-INF/MANIFEST.MF
查看 jar 有哪些檔案
jar -tf **jar 檔**
範例 : jar -tf utilitytools.jar | grep MANIFEST.MF
顯示檔案詳細資訊
jar -tvf **jar檔**
範例 : jar -tvf utilitytools.jar | grep MANIFEST.MF